home *** CD-ROM | disk | FTP | other *** search
- if(!init)
- {
- init = true;
- gotoAndStop("still");
- count = 0;
- }
- this.onEnterFrame = function()
- {
- _X = _X - _root.hitomi.speed;
- if(this.hitTest(_hitomi.hitarea))
- {
- beenHit();
- }
- };
- beenHit = function()
- {
- this.count = this.count + 1;
- if(random(2) == 0)
- {
- var c = random(3) + 1;
- var candle = eval("lamp.c" + c);
- candle.gotoAndStop("off");
- }
- if(random(3) == 0)
- {
- gotoAndPlay(1);
- }
- else
- {
- gotoAndStop("still");
- play();
- }
- };
-